home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / midas060 / samples / delphi / gplmain.dfm / gplmain.txt
Encoding:
Text File  |  1997-01-16  |  1.3 KB  |  70 lines

  1. object gplform: Tgplform
  2.   Left = 205
  3.   Top = 150
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsDialog
  6.   Caption = 'gplform'
  7.   ClientHeight = 81
  8.   ClientWidth = 129
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object LoadButton: TButton
  16.     Left = 8
  17.     Top = 8
  18.     Width = 33
  19.     Height = 25
  20.     Caption = 'Load'
  21.     TabOrder = 0
  22.     OnClick = LoadButtonClick
  23.   end
  24.   object PlayButton: TButton
  25.     Left = 48
  26.     Top = 8
  27.     Width = 33
  28.     Height = 25
  29.     Caption = 'Play'
  30.     TabOrder = 1
  31.     OnClick = PlayButtonClick
  32.   end
  33.   object StopButton: TButton
  34.     Left = 88
  35.     Top = 8
  36.     Width = 33
  37.     Height = 25
  38.     Caption = 'Stop'
  39.     TabOrder = 2
  40.     OnClick = StopButtonClick
  41.   end
  42.   object PosTrack: TTrackBar
  43.     Left = 8
  44.     Top = 48
  45.     Width = 113
  46.     Height = 25
  47.     Enabled = False
  48.     Orientation = trHorizontal
  49.     Frequency = 1
  50.     Position = 0
  51.     SelEnd = 0
  52.     SelStart = 0
  53.     TabOrder = 3
  54.     TickMarks = tmBottomRight
  55.     TickStyle = tsAuto
  56.     OnChange = PosTrackChange
  57.   end
  58.   object OpenDialog: TOpenDialog
  59.     FileEditStyle = fsEdit
  60.     Left = 248
  61.     Top = 32
  62.   end
  63.   object UpdateTimer: TTimer
  64.     Interval = 100
  65.     OnTimer = UpdateTimerTimer
  66.     Left = 248
  67.     Top = 72
  68.   end
  69. end
  70.